home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ConsoleKit / scripts / ck-system-restart next >
Encoding:
Text File  |  2008-10-24  |  191 b   |  13 lines

  1. #!/bin/sh
  2.  
  3. #Try for common tools
  4. if [ -x "/sbin/shutdown" ] ; then
  5.     /sbin/shutdown -r now
  6.     exit $?
  7. elif [ -x "/usr/sbin/shutdown" ] ; then
  8.     /usr/sbin/shutdown -r now
  9.     exit $?
  10. else
  11.     exit 1
  12. fi
  13.